home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_12_06 / pugh / nestlp1.c < prev    next >
C/C++ Source or Header  |  1994-04-04  |  294b  |  12 lines

  1. Listing 1: An attempt at nested for loops
  2.  
  3. int main(void) {
  4. static int ij, ik, lt, lm;
  5.     for (ik=0;ik<3;ik++)
  6.     for (ij=0;ij<3; ij++){
  7.         printf("*%d %d*", ij,ik);
  8.  
  9.             for (lt=0;lt<3;lt++)
  10.             for (lm=0;lm<3;lm++) {
  11.             printf("/%d %d/", lm,lt);}}}
  12.